home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000265_fdc@sesame.cc.columbia.edu_Tue Sep 9 08:57:10 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  1KB  |  37 lines

  1. Article: 14506 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news-not-for-mail
  3. From: fdc@sesame.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Problem with path getting file
  6. Date: 9 Sep 2003 08:57:05 -0400
  7. Organization: Columbia University
  8. Lines: 20
  9. Message-ID: <bjkin1$ncb$1@sesame.cc.columbia.edu>
  10. References: <61105627.0309082215.2dc4461e@posting.google.com>
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1063112225 17882 128.59.59.56 (9 Sep 2003 12:57:05 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 9 Sep 2003 12:57:05 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14506
  16.  
  17. In article <61105627.0309082215.2dc4461e@posting.google.com>,
  18. carlossm <carlos@vanguardiatec.com> wrote:
  19. : Strange path error. I trying to "GET" a file from a kermit server
  20. : with:
  21. : get aaaa.txt g:\xfer\aaaa.txt
  22. : As you can tell the \xfe gets translated into ascii character 254. How
  23. : can I avoid this?
  24. Backslash has a special function in Kermit language, just like it does
  25. in shell scripts.  Use:
  26.  
  27.   get aaaa.txt g:\\xfer\\aaaa.txt
  28.  
  29. or:
  30.  
  31.   get aaaa.txt g:/xfer/aaaa.txt
  32.  
  33. - Frank
  34.